projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cec7f4a
)
(start_hourglass): Suppress hourglass on tty frames.
author
Jason Rumney
<jasonr@gnu.org>
Thu, 27 Mar 2008 17:11:40 +0000
(17:11 +0000)
committer
Jason Rumney
<jasonr@gnu.org>
Thu, 27 Mar 2008 17:11:40 +0000
(17:11 +0000)
src/ChangeLog
patch
|
blob
|
history
src/w32fns.c
patch
|
blob
|
history
diff --git
a/src/ChangeLog
b/src/ChangeLog
index 907f2c6cdc6d411d0a86f7a94ea55d3f9c031d31..c04ca11131c7b09b89ad5c7ee21aeb201efa9d04 100644
(file)
--- a/
src/ChangeLog
+++ b/
src/ChangeLog
@@
-1,3
+1,7
@@
+2008-03-27 Jason Rumney <jasonr@gnu.org>
+
+ * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
+
2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
* charset.c (Fdefine_charset_internal): Change the way of
diff --git
a/src/w32fns.c
b/src/w32fns.c
index ed5decdc868f413bd8168b598ed32de840894f49..f314b4b4f7c13722a8a2df15df9cd0fefe7ee47e 100644
(file)
--- a/
src/w32fns.c
+++ b/
src/w32fns.c
@@
-7280,6
+7280,10
@@
start_hourglass ()
int secs, msecs = 0;
struct frame * f = SELECTED_FRAME ();
+ /* No cursors on non GUI frames. */
+ if (!FRAME_W32_P (f))
+ return;
+
cancel_hourglass ();
if (INTEGERP (Vhourglass_delay)